home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
ctoolwrk.lbr
/
FRITE.C
< prev
next >
Wrap
Text File
|
1985-09-27
|
896b
|
34 lines
/* frite.c */
/* an improvement on readin1.c to read info into a file */
#include a:printf.c
char x;
char t;
main()
{
fopen("file","u");
{
while((x = getchar()) != '\21') /* until control-Q */
putc(x,1);
}
fclose(1);
{
fopen("nother","w")
t="this file is nother";
{
fprintf(1,t);
{
fclose(1);
}
}